home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / COMPLIB / 386 / STKCHK.ASM next >
Assembly Source File  |  1997-02-27  |  197b  |  14 lines

  1.     .386
  2.     .model small
  3.     .code
  4.  
  5.     public __stackerror
  6.     extrn _printf:proc, _abort:proc
  7. errmsg    db    "stack overflow",10,13,0
  8.  
  9. __stackerror:
  10.     push    offset errmsg
  11.     call    _printf
  12.     jmp    _abort;
  13.  
  14.     end